home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bash-completion.postinst < prev    next >
Text File  |  2008-06-19  |  386b  |  26 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure)
  7.     # remove ucf configury
  8.     if which ucf >/dev/null; then
  9.         ucf --purge /etc/bash_completion
  10.     fi
  11.     if which ucfr >/dev/null; then
  12.         ucfr --purge bash-completion /etc/bash_completion
  13.     fi
  14.     ;;
  15.     abort-upgrade|abort-remove|abort-deconfigure)
  16.     ;;
  17.     *)
  18.     echo "postinst called with unknown argument \`$1'" >&2
  19.     exit 1
  20.     ;;
  21. esac
  22.  
  23.  
  24.  
  25. exit 0
  26.